home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C++ / Applications / Argus TE 2.0 / Argus Libraries 2.0 / Argus Standards / ArgusHelpBalloons.r < prev   
Encoding:
Text File  |  1994-11-01  |  1.6 KB  |  70 lines  |  [TEXT/KAHL]

  1. /**********************************************************************
  2.  
  3.     Segment: ArgusAboutBalloons.r
  4.  
  5. ***********************************************************************/
  6.  
  7. /* THINK Rez resource format */
  8. #include <Types.r>
  9. #include <BalloonTypes.r>
  10.  
  11. resource 'hdlg' (598, "Help Balloons", purgeable){
  12.   /* Header */
  13.   HelpMgrVersion,
  14.   0,                  /* start help with first item in DITL */
  15.   hmSaveBitsNoWindow, /* hmDefaultOptions or hmSaveBitsNoWindow */
  16.   0,                  /* balloon definition */
  17.   0,                  /* variation code or position code, reference
  18.                          IM: More Macintosh Toolbox p3-10 */
  19.   
  20.   /* Missing Component */
  21.   HMSkipItem {
  22.   },
  23.   
  24.   /* Help */
  25.   {
  26.     /* [1] */
  27.     HMStringREsItem { /* store help messages in STR# 500 */
  28.     { 0, 0 },         /* default tip location is { 0, 0 } */
  29.     { 0, 0, 0, 0 },   /* default alternate rectangle */
  30.     598, 1,           /* OK button */
  31.     0, 0,             /* never dimmed */
  32.     0, 0,             /* never checked */
  33.     0, 0              /* never marked */
  34.     },
  35.     
  36.     /* [2] */
  37.     HMStringREsItem {
  38.     { 0, 0 },
  39.     { 0, 0, 0, 0 },
  40.     598, 2,           /* Print button */
  41.     0, 0,
  42.     0, 0,
  43.     0, 0
  44.     },
  45.  
  46.     /* [3] */
  47.     HMStringREsItem {
  48.     { 0, 0 },
  49.     { 0, 0, 0, 0 },
  50.     598, 3,           /* Save button */
  51.     0, 0,
  52.     0, 0,
  53.     0, 0
  54.     },
  55.  
  56.   }
  57. };
  58.  
  59. resource 'STR#' (598, "Help Dialog Help Strings") {
  60.   {
  61.   /* [1] */
  62.   "To dismiss dialog, click this button.";
  63.   /* [2] */
  64.   "Use to print above help information.";
  65.   /* [3] */
  66.   "Use to save above help information to a text file.";
  67.   }
  68. };
  69.  
  70. // End of File